LUA PUSH FUNCTION
Pushes a named LUA script function onto the LUA stack. Before calling a script function you first have to use this command. Then you can push any arguments the function needs, and then you may call the function with LUA CALL FUNCTION().
The reason for this procedure is the fact that a script function can have various arguments and it is impossible to map them all to function definitions. So LUA has implemented the stack to make it possible to virtually call ANY script function with arbitrary arguments that you may make up.
You can get more help on the LUA stack on the official LUA homepage: http://www.lua.org
SYNTAX
LUA PUSH FUNCTION function_name as String
RELATED INFO
LUA command menu
Index
EXAMPLE
Showcase-example 1
Showcase-example 2